home *** CD-ROM | disk | FTP | other *** search
- /* Headerdatei fuer DEMO Programm 1.00 B */
-
- #define ANHANG_LEN 4
- #define MAX_COLOR 5
- #define SM_PRN_INIT_LEN 30
-
-
-
- struct demo_festlegungen{
- USHORT screen_size; /* Bildschirmgröße */
- USHORT background; /* Hintergrundzeichen */
- USHORT output_mode; /* Ausgabe BIOS Direkt */
- USHORT frame_color; /* Randfarbe */
- USHORT printer; /* Druckausgabekanal */
- USHORT shadow; /* Window mit Schatten */
- USHORT menu_mode; /* Menümodus Pop/Pull */
- USHORT menu_maus; /* Menü nach Maus */
- USHORT for_col_nor[MAX_COLOR]; /* Farbtabellen */
- USHORT back_col_nor[MAX_COLOR];
- USHORT for_col_inv[MAX_COLOR];
- USHORT back_col_inv[MAX_COLOR];
- USHORT saa_zeichen; /* Saa Palete */
- CHAR anhang[ANHANG_LEN];/* Datenpfad Windows */
- CHAR druck_pfad[DATEI_PFAD_LEN];/* Datenpfad Windows */
- CHAR datei_pfad[DATEI_PFAD_LEN];/* Datenpfad Windows */
- CHAR heim_pfad[DATEI_PFAD_LEN]; /* Datenpfad Hilfe */
- CHAR datei[DATEI_NAME_LEN]; /* Dateiname Global */
- CHAR header[MAX_HEADER_SIZE]; /* Windowheader Global */
- SHORT maus; /* Mit ohne Maus */
- SHORT printer_typ; /* Druckertyp */
- SHORT linker_rand; /* Linker Rand */
- SHORT seiten_laenge; /* seiten_laenge */
- SHORT sound; /* Warnton an aus */
- UCHAR prn_pre_init[SM_PRN_INIT_LEN]; /*Druck init */
- UCHAR prn_post_init[SM_PRN_INIT_LEN]; /*Druck deinit */
- SHORT button_typ; /*Schaltertyp */
- SHORT button_shadow; /* Schalterschatten */
- SHORT button_klick; /* Schalterklicken */
- SHORT button_freq_ein; /* ton ein */
- SHORT button_ton_ein; /* ton ein */
- SHORT button_freq_aus; /* ton aus */
- SHORT button_ton_aus; /* ton aus */
- SHORT win_open_mode; /* Öffnungsmodus */
- SHORT open_delay; /* Verzögerungsdauer */
- SHORT maus_hand; /* Rechts oder links */
-
- };
-
- #ifdef DEMO_DEF
- struct demo_festlegungen demo_fest;
- #else
- extern struct demo_festlegungen demo_fest;
- #endif